cae18111986d096f6bff87725d56bf5e70b58b82,library/src/main/java/com/mikepenz/aboutlibraries/ui/LibsActivity.java,LibsActivity,onCreate,#Bundle#,19
Before Change
ActionBar ab = getSupportActionBar();
if (ab != null) {
if (!customTheme) {
ab.setBackgroundDrawable(null);
}
ab.setDisplayHomeAsUpEnabled(true);
After Change
if (ab != null) {
if (!customTheme) {
Colors colors = bundle == null ? null : (Colors) bundle.getParcelable(Libs.BUNDLE_COLORS);
if (colors != null) {
ab.setBackgroundDrawable(new ColorDrawable(colors.appBarColor));
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)
getWindow().setStatusBarColor(colors.statusBarColor);
} else ab.setBackgroundDrawable(null);
}
ab.setDisplayHomeAsUpEnabled(true);
if (TextUtils.isEmpty(title)) {